for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
'use strict';
function isEmpty(x) {
return (
typeof x === 'undefined' ||
x === null ||
x === 'null' ||
x === 'undefined' ||
x === false ||
x.length === 0 ||
x === ''
);
}
module.exports = {
isEmpty: isEmpty,
};